![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
match-deep
Advanced tools
A deep matching library.
matchDeep(value, source, options?)
import matchDeep from 'match-deep';
const matches = matchDeep(
{
a: 1,
b: 2
},
{
c: 1,
d: 2
},
{
shortCircuit: true
}
);
console.log(matches);
/*
{
result: false,
message: 'Number `1` and value `undefined` not equal for "c" ' +
'Number `2` and value `undefined` not equal for "d"',
errors: [
{
message: 'Number `1` and value `undefined` not equal',
keyPath: [Array]
},
{
message: 'Number `2` and value `undefined` not equal',
keyPath: [Array]
}
]
}
*/
Defaults:
{
shortCircuit: false,
skipKeys: [],
serializedRegex: false
}
shortCircuit
(boolean
) - true
will stop on the first match error and report only that one, which can help performance.
skipKeys
(string[]
) - an array of key names under which to not do comparisons - all keys are considered by default.
serializedRegex
(boolean
) - true
will interpret { $regex: { source: 'a.*b', flags: 'i' } }
as if it were /a.*b/i
.
This allows for serialization of regular expressions over JSON.
Also supports optional flags
as in { $regex: { source: 'a.*b' } }
, and just a source
string as in { $regex: 'a.*b' }
.
FAQs
deep object matcher
The npm package match-deep receives a total of 0 weekly downloads. As such, match-deep popularity was classified as not popular.
We found that match-deep demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.